home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / autocad / cadtrk18.arj / LOGOUT.BAT < prev    next >
DOS Batch File  |  1993-09-18  |  1KB  |  40 lines

  1. @echo off
  2.  
  3. REM **************** Read all instructions carefully *******************
  4.  
  5. REM  This batch file will cause CadTrack to log whatever time has elapsed 
  6. REM  since you began the CADD session and temporarily suspend logging. 
  7. REM  It will then run your favorite screen saver (assuming you have memory
  8. REM  to run it).  CadTrack will resume logging time when you exit the
  9. REM  screen saver (usually by pressing any key other than ENTER or SPACE).
  10.  
  11. REM  In order for Autocad to execute this batch file from within a drawing,
  12. REM  it must be located in a sub-directory which is included as part of the
  13. REM  path statement.  Also, the statement "LOGOUT,LOGOUT,200000,,4" must be 
  14. REM  added to the ACAD.PGP file.  Refer to the Autocad manual for further
  15. REM  information on the ACAD.PGP file.
  16.  
  17. :logout
  18.  
  19. REM  Note: If you are a registered user of CadTrack the following line
  20. REM  must be edited to match the drive:\path where you have installed
  21. REM  CadTrack.
  22.  
  23. call c:\cadtrack\dfltlog lunch
  24.  
  25. :dolunch
  26.  
  27. REM  Call screen saver program here. If your screen saver program is run from
  28. REM  a batch file make sure you use the syntax "call scrsaver.bat".  You must
  29. REM  insure that that the screen saver program sub-directory is either in 
  30. REM  your PATH or called directly from the command line below.
  31.  
  32. call dazzle
  33.  
  34. REM Replace the line above with the appropriate command for your screen
  35. REM saver.
  36.  
  37. :login
  38. call c:\cadtrack\dfltlog restart
  39.  
  40.